home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / tlxdsz21.zip / DSZ.SLT < prev    next >
Text File  |  1991-02-07  |  414b  |  21 lines

  1. main()
  2. {
  3.  str cmdline[255], port[1];
  4.  itos(get_port(), port);
  5.  strcat(cmdline, "port ");
  6.  strcat(cmdline, port);
  7.  if (_ext_filespec == "")
  8.   {
  9.    strcat(cmdline, " ha both D pB4096 rz -m -rr ");
  10.    strcat(cmdline, _down_dir);
  11.   }
  12.  else
  13.   {
  14.    strcat(cmdline, " ha both pB4096 z pb1 sz -m ");
  15.    strcat(cmdline, _ext_filespec);
  16.    _ext_filespec = "";
  17.   }
  18.  run("dsz", cmdline, 0);
  19.  flushbuf();
  20. }
  21.